home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / MPW Interfaces & Libraries / PInterfaces / SCSIIntf.p < prev    next >
Encoding:
Text File  |  1992-01-29  |  872 b   |  43 lines  |  [TEXT/MPS ]

  1. {
  2.     File: SCSIIntf.p
  3.  
  4.     As of MPW 3.0, interface files were reorganized to more closely
  5.     match "Inside Macintosh" reference books and be more consistant
  6.     from language to language.
  7.     
  8.     Interfaces for the SCSI Manager are now found in SCSI.p.
  9.     This file, which includes SCSI.p, is provided for compatibility
  10.     with old sources.
  11.  
  12.     Pascal Interface to the Macintosh Libraries
  13.     Copyright Apple Computer, Inc. 1988
  14.     All Rights Reserved
  15. }
  16.  
  17. {$IFC UNDEFINED UsingIncludes}
  18. {$SETC UsingIncludes := 0}
  19. {$ENDC}
  20.  
  21. {$IFC NOT UsingIncludes}
  22.     UNIT SCSIIntf;
  23.     INTERFACE
  24. {$ENDC}
  25.  
  26. {$IFC UNDEFINED UsingSCSIIntf}
  27. {$SETC UsingSCSIIntf := 1}
  28.  
  29. {$I+}
  30. {$SETC SCSIIntfIncludes := UsingIncludes}
  31. {$SETC UsingIncludes := 1}
  32. {$IFC UNDEFINED UsingSCSI}
  33. {$I $$Shell(PInterfaces)SCSI.p}
  34. {$ENDC}
  35. {$SETC UsingIncludes := SCSIIntfIncludes}
  36.  
  37. {$ENDC}    { UsingSCSIIntf }
  38.  
  39. {$IFC NOT UsingIncludes}
  40.     END.
  41. {$ENDC}
  42.  
  43.